home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / chunker / source / smakefile < prev    next >
Makefile  |  1995-11-15  |  508b  |  29 lines

  1. #
  2. # SAS/C Makefile for chunker
  3. #
  4. #
  5.  
  6. LINKER = SC LINK
  7. LINKOPS = NOCHECKABORT
  8.  
  9. all: /dechunk /chunker
  10.  
  11. chunker.o: chunker.c chunker.h machine.h
  12.  
  13. dechunk.o: dechunk.c dechunk.h machine.h
  14.  
  15. bfn.o: bfn.c bfn.h machine.h
  16.  
  17. machine.o: machine.c machine.h
  18.  
  19. /chunker: chunker.o bfn.o machine.o
  20.     $(LINKER) $(LINKOPS) chunker.o bfn.o machine.o TO $@
  21.     protect /chunker p add
  22.  
  23. /dechunk: dechunk.o bfn.o machine.o
  24.     $(LINKER) $(LINKOPS) dechunk.o bfn.o machine.o TO $@
  25.     protect /dechunk p add
  26.  
  27. clean:
  28.     -delete \#?.o /\#?.lnk
  29.